home *** CD-ROM | disk | FTP | other *** search
/ HaCKeRz Kr0nlcKLeZ 1 / HaCKeRz Kr0nlcKLeZ.iso / chibacity / gbbdisk.arj / POLY / TEST.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-07-03  |  489 b   |  21 lines

  1.  
  2.  
  3.                 .model  tiny
  4.  
  5.                 .code
  6.  
  7. ;******************************************************************************
  8. ;The host program starts here. This one is a dummy that just returns control
  9. ;to DOS.
  10.                 public  HOST
  11.                 ORG     100H
  12. HOST:
  13.                 db      100 dup (90H)
  14.                 mov     ax,4C00H                ;Terminate, error code = 0
  15.                 int     21H
  16.  
  17. HOST_END:
  18.  
  19.                 END     HOST
  20.  
  21.